home *** CD-ROM | disk | FTP | other *** search
/ Aminet 25 / Aminet 25 (1998)(GTI - Schatztruhe)[!][Jun 1998].iso / Aminet / demo / mag / HDU_no9.lha / Prg / TB40.lha / TB4.0 / TBPrint / example.rexx next >
Encoding:
OS/2 REXX Batch file  |  1998-02-10  |  391 b   |  31 lines

  1. /* test.rexx for TBPrint V 1.05 */
  2. ADDRESS 'TBPRINT.1'
  3.  
  4. OPTIONS RESULTS
  5.  
  6. /* Send TBPrint a test siganl */
  7. 'TEST'
  8. SAY RESULT
  9. SAY '------------------------------'
  10.  
  11. /*
  12. ** set filename to /numbers/Example.TB
  13. */
  14. 'SETF /Numbers/Example.TB'
  15. SAY RESULT
  16. SAY '------------------------------'
  17.  
  18. /*
  19. ** clear and load the current the filename
  20. */
  21. 'CLR'
  22.  
  23. /*
  24. ** Print as Text
  25. */
  26. 'PTEXT'
  27. /*
  28. ** Quit
  29. */
  30. 'QUIT'
  31.